* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/* font-family: 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'HarmonyOS Sans SC', 'SimSun', 'SimHei', 'Arial', 'sans-serif'; */
}

@font-face {
	font-family: "Anton";
	/* Project id 2871779 */
	src: url('../fonts/Anton-Regular.ttf');
}

@font-face {
	font-family: "Rany";
	/* Project id 2871779 */
	src: url('../fonts/Rany.ttf');
}

@font-face {
	font-family: "Rany-Bold";
	/* Project id 2871779 */
	src: url('../fonts/Rany-Bold.otf');
}

/* a:link,
a:active,
a:visited,
a:hover,
{
background: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-tap-highlight-color: transparent;
} */

a {
	text-decoration: none;
}

ul {
	list-style: none;
}

body {
	overflow-x: hidden;
	-webkit-tap-highlight-color: transparent;
	font-family: Arial, Helvetica, sans-serif;
}

::-webkit-scrollbar {
	/*高宽分别对应横竖滚动条的尺寸*/
	width: 5px;
	height: 1px;
}

/*滚动条里面小方块*/
::-webkit-scrollbar-thumb {
	border-radius: 2px;
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	background: #EB6622;
}

/*滚动条里面轨道*/
::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	border-radius: 2px;
	background: #EDEDED;
}

.content1300 {
	margin: 0 auto;
	width: 1300px;
	max-width: 94%;
}

.content1440 {
	margin: 0 auto;
	width: 1440px;
	max-width: 94%;
}

.content1400 {
	margin: 0 auto;
	width: 1400px;
	max-width: 94%;
}

.content1240 {
	margin: 0 auto;
	width: 1240px;
	max-width: 94%;
}

.content1200 {
	margin: 0 auto;
	width: 1200px;
	max-width: 94%;
}

.content1500 {
	margin: 0 auto;
	width: 1500px;
	max-width: 94%;
}

.content1600 {
	margin: 0 auto;
	width: 1600px;
	max-width: 94%;
}

.content312 {
	padding: 0 3.12%;
}

.picCover {
	position: relative;
}

.picCover .pic {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.picCover .pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hoverLi .pic {
	overflow: hidden;
}

.hoverLi:hover .imgScale {
	transform: scale(1.05);
}

.imgScale {
	transition: all 1s;
	display: block;
	width: 100%;
}

.font30 {
	font-size: 30px;
}

.font48 {
	font-size: 48px;
}

.font36 {
	font-size: 36px;
}

.font60 {
	font-size: 60px;
}

.font70 {
	font-size: 70px;
}

.font80 {
	font-size: 80px;
}

.font90 {
	font-size: 90px;
}

.font200 {
	font-size: 200px;
}

.header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 999;
	transition: all .6s;
	/* background-color: rgba(255, 255, 255, .9); */
}

.header.sticky {
	position: sticky;
}

.header.active,
.header.active1 {
	background: #fff;
}

.header::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background-color: rgba(255, 255, 255, .1);
}

.header .content312 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 3;
}

.header .logo img {
	display: block;
	width: 359px;
}

.header .logo img.img2 {
	display: none;
}

.header.active1 .logo img.img2,
.header.active .logo img.img2 {
	display: block;
}

.header.active1 .logo img.img1,
.header.active .logo img.img1 {
	display: none;
}

.header .r {
	display: flex;
	align-items: center;
}

.header .r .list {
	display: flex;
	gap: 0 45px;
}

.header .r .list li>a {
	display: block;
	font-weight: 400;
	font-size: 18px;
	color: #FFFFFF;
	line-height: 100px;
	transition: all .6s;
}

.header.active .r .list li>a,
.header.active1 .r .list li>a {
	color: #666666;
}

.header .r .list li.active>a,
.header .r .list li:hover>a {
	color: #EB6622;
}

.header .r .list li .subNav {
	position: absolute;
	left: 0;
	top: 100%;
	width: 99%;
	background: #F6F8F8;
	padding: 10px 0 50px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(30px);
	transition: all .6s;
	z-index: 6;
}

.header .r .list li:hover .subNav {
	opacity: 1;
	visibility: visible;
	pointer-events: inherit;
	transform: translateY(0);
}

.header .r .list li .subNavContainer {
	display: flex;
}

.header .r .list li .subNavContainer-l {
	width: 320px;
	background: #FFFFFF;
	border-radius: 10px;
	padding: 13px 30px 26px;
}

.header .r .list li .subNavContainer-l a {
	display: flex;
	padding: 0 22px;
	line-height: 60px;
	border-radius: 5px;
	font-weight: 400;
	font-size: 18px;
	color: #222222;
	line-height: 50px;
	justify-content: space-between;
	transition: all .6s;
}

.header .r .list li .subNavContainer-l a:hover {
	color: #EB6622;
}

.header .r .list li .subNavContainer-l a.active {
	background: #EB6622;
	color: #fff;
}

.header .r .list li .subNavContainer-l a .iconfont {
	color: #fff;
	font-size: 20px;
	font-weight: bold;
}

.header .r .list li .subNavContainer-r {
	flex: 1;
	margin-left: 54px;
}

.header .r .list li .subNavContainer-r .items {
	display: none;
	grid-template-columns: repeat(3, 1fr);
	gap: 0 49px;
}

.header .r .list li .subNavContainer-r .items.active {
	display: grid;
}

.header .r .list li .subNavContainer-r .items a {
	display: flex;
	justify-content: space-between;
	padding: 0 14px;
	line-height: 50px;
	font-weight: 400;
	font-size: 16px;
	color: #666666;
	transition: all .6s;
	border-radius: 5px;
}

.header .r .list li .subNavContainer-r .items a .iconfont {
	font-size: 18px;
	opacity: 0;
	transition: all .6s;
}

.header .r .list li .subNavContainer-r .items a:hover .iconfont {
	opacity: 1;
}

.header .r .list li .subNavContainer-r .items a:hover {
	color: #EB6622;
	background-color: #fff;
}

.header .r .list li .subNavContainer .brandList {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 10px;
	width: 100%;
}

.header .r .list li .subNavContainer .brandItem {
	background: #FFFFFF;
	border-radius: 5px;
	overflow: hidden;
}

.header .r .list li .subNavContainer .brandItem .picCover {
	padding-top: 44.44%;
}

.header .r .list li .subNavContainer .brandItem .pic img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

.header .r .contactBtn {
	font-weight: bold;
	font-size: 16px;
	color: #EB6622;
	line-height: 50px;
	background: #FFFFFF;
	border-radius: 25px;
	padding: 0 28px;
	margin-left: 80px;
	transition: all .6s;
}

.header.active .r .contactBtn,
.header.active1 .r .contactBtn,
.header .r .contactBtn:hover {
	background-color: #EB6622;
	color: #fff;
}

.header .r .language,
.header .r .shoppingCartBtn {
	color: #fff;
	margin-left: 34px;
	transition: all .6s;
}

.header.active .r .language,
.header.active1 .r .language,
.header.active .r .shoppingCartBtn,
.header.active1 .r .shoppingCartBtn {
	color: #CCCCCC
}

.header .r .language:hover,
.header .r .shoppingCartBtn:hover {
	color: #EB6622;
}

.header .r .language .iconfont,
.header .r .shoppingCartBtn .iconfont {
	font-size: 20px;
}

.header .r .aslideBtn .iconfont {
	color: rgba(153, 153, 153, 1);
	font-size: 22px;
	transition: all .6s;
}

.header .r .header-search-box {
	position: relative;
	margin-left: 34px;
}

.header .r .header-search-box .header-searchBtn {
	cursor: pointer;
	font-size: 22px;
	color: #fff;
	transition: all .6s;
}

.header.active1 .r .header-search-box .header-searchBtn,
.header.active .r .header-search-box .header-searchBtn {
	color: #ccc;
}

.header .r .header-search-box .header-searchBtn:hover {
	color: #EB6622;
}

.header .r .header-search-box .header-search-container {
	position: absolute;
	right: -15px;
	top: 70px;
	display: none;
	/* border: 1px solid #999; */
}

.header .r .header-search-box .header-search {
	width: 230px;
	height: 38px;
	background: rgba(255, 255, 255, 1);
	/* background: #F0F0F0; */
	border-radius: 19px;
	display: flex;
	align-items: center;
	/* box-shadow: 0 10px 40px rgba(0, 0, 0, .08); */
	border: 1px solid #999;
}

.header .r .header-search-box .header-search input {
	flex: 1;
	padding-left: 17px;
	font-size: 12px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333;
	height: 100%;
	width: 100%;
	border-radius: 19px;
	border: none;
	outline: none;
	background-color: transparent;
}

.header .r .header-search-box .header-search input::placeholder {
	color: #999;
}

.header .r .header-search-box .header-search .iconfont {
	cursor: pointer;
	color: rgba(153, 153, 153, 1);
	padding: 0 15px 0 10px;
	transition: all 1s;
}

.header .r .header-search-box .header-search .iconfont:hover {
	color: #EB6622;
}

.innerBread {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	font-weight: 400;
	font-size: 14px;
	color: #999999;
	line-height: 30px;
	gap: 0 10px;
	padding-top: 34px;
	z-index: 2;
}

.innerBread a {
	color: #999;
	transition: all .6s;
}

.innerBread .iconfont.icon-home,
.innerBread a.active,
.innerBread a:hover {
	color: #EB6622;
}

.innerBread .iconfont.icon-youjiantou11 {
	font-size: 12px;
	font-weight: bold;
}

.innerNav {
	position: relative;
	margin-top: 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 2;
}

.innerNav .en {
	font-family: "Rany";
	font-weight: 400;
	color: #CCCCCC;
	line-height: 1;
	text-transform: uppercase;
}

.innerNav-r {
	display: flex;
	gap: 12px;
}

.innerNav-r a {
	line-height: 60px;
	background: #F2F2F2;
	border-radius: 5px;
	font-weight: bold;
	font-size: 18px;
	color: #222222;
	padding: 0 28px;
	transition: all .6s;
}

.innerNav-r a:hover {
	color: #EB6622;
}

.innerNav-r a.active {
	background: #EB6622;
	color: #fff;
	box-shadow: 5px 9px 30px 0px rgba(235, 102, 34, 0.3);
}

@keyframes rotate360 {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.pc-aslide {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
	z-index: 9999;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: ease-in-out .6s;
}

.pc-aslide.active {
	opacity: 1;
	pointer-events: inherit;
	visibility: visible;
}

.pc-aslide-content {
	position: absolute;
	right: 0;
	top: 0;
	background-color: rgba(255, 255, 255, 1);
	height: 100%;
	width: 829px;
	max-width: 100%;
	padding: 48px 50px 50px 77px;
	display: flex;
	flex-direction: column;
	transition: ease-in-out .6s;
	transform: translateX(120%);
	opacity: 0;
}

.pc-aslide.active .pc-aslide-content {
	transform: translateX(0);
	transition: ease-in-out .6s .3s;
	opacity: 1;
}

.pc-aslide-content-t {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.pc-aslide-content-t .close {
	color: rgba(153, 153, 153, 1);
	transition: all .6s;
	cursor: pointer;
}

.pc-aslide-content-c .list .li-des a:hover,
.pc-aslide-content-c .list .li-title:hover,
.pc-aslide-content-t .close:hover {
	color: #EB6622;
}

.pc-aslide-content-t .close .iconfont {
	font-size: 30px;
}

.pc-aslide-content-c {
	text-align: center;
	margin-top: 100px;
	flex: 1;
	overflow: auto;
}

.pc-aslide-content-c .list {
	display: inline-block;
	min-width: 300px;
}

.pc-aslide-content-c .list li {
	opacity: 0;
	transition: all 1s ease;
	transform: translateY(40px);
}

.pc-aslide.active .pc-aslide-content-c .list li {
	opacity: 1;
	transform: translateY(0);
}

.pc-aslide-content-c .list li:not(:last-child) {
	margin-bottom: 50px;
}

.pc-aslide-content-c .list .li-title {
	font-size: 24px;
	font-family: Microsoft YaHei;
	font-weight: 300;
	color: #333333;
	line-height: 1;
	transition: all .6s;
}

.pc-aslide-content-c .list .li-des {
	border-top: 1px solid rgba(230, 230, 230, 1);
	margin-top: 20px;
	padding-top: 20px;
	display: none;
}

.pc-aslide-content-c .list .li-des a {
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 300;
	color: #666666;
	display: block;
	line-height: 2.5;
	transition: all .6s;
}

.modal {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.55);
	display: none;
	z-index: 999;
}

.modal .shadow {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.video-content {

	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);

}

.modal .close {
	position: absolute;
	right: -26px;
	top: -26px;
	cursor: pointer;
	color: #fff;
	font-size: 24px;
}

.video-content video {
	display: block;
	margin: 0 auto;
	max-width: 90vw;
	max-height: 80vh;
}

.pagination ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.pagination ul li {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 18px;
	font-family: "Rany-Bold";
	color: rgba(51, 51, 51, 1);
	margin: 5px;
	cursor: pointer;
	transition: all .6s;
	border-radius: 50%;
}


.pagination ul li .iconfont {
	font-size: 18px;
	font-weight: bold;
}

.pagination ul li:hover,
.pagination ul li.active {
	background-color: #EB6622;
	border-color: #EB6622;
}

.pagination ul li a {
	color: rgba(153, 153, 153, 1);
	display: block;
	transition: all .6s;
}

.pagination ul li.active a,
.pagination ul li:hover a {
	color: #fff;
}

@keyframes fadeInUpSmall {
	from {
		opacity: 0;
		transform: translate3d(0%, 30px, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0%, 0px, 0);
	}
}

.fadeInUpSmall {
	animation-name: fadeInUpSmall;
}

.m-right-buttom {
	display: none;
}

.footer {
	background-color: rgba(34, 34, 34, 1);
	padding-top: 100px;
}

.footer-t {
	display: flex;
	justify-content: space-between;
}

.footer-t-l,
.footer-c-l {
	width: 37.29%;
}

.footer-t-r,
.footer-c-r {
	width: 55.57%;
}

.footer-t-l .logo img {
	display: block;
	width: 160px;
}

.footer-t-l .list {
	margin-top: 64px;
}

.footer-t-l .list li:not(:last-child) {
	margin-bottom: 30px;
}

.footer-t-l .list .text-title {
	font-weight: bold;
	font-size: 16px;
	color: #FFFFFF;
	line-height: 24px;
}

.footer-t-l .list .text-box {
	font-weight: 400;
	font-size: 14px;
	color: #999999;
	line-height: 24px;
	margin-top: 14px;
}

.footer-t-r .list {
	display: flex;
	justify-content: space-between;
}

.footer-t-r .list .li-title {
	display: block;
	font-weight: bold;
	font-size: 16px;
	color: #FFFFFF;
	line-height: 24px;
}

.footer-t-r .list .li-des {
	margin-top: 37px;
}

.footer-t-r .list .li-des p:not(:last-child) {
	margin-bottom: 16px;
}

.footer-t-r .list .li-des a {
	font-size: 16px;
	color: rgba(153, 153, 153, 1);
	line-height: 24px;
	transition: all .6s;
}

.footer-c {
	padding: 44px 0 54px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.social {
	display: flex;
	gap: 10px;
}

.social a {
	position: relative;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid #999999;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: all .6s;
}

.social a img {
	position: absolute;
	left: 50%;
	bottom: 120%;
	transform: translateX(-50%);
	width: 100px;
	height: 100px;
	background-color: #fff;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all .6s;
}

.social a:hover img {
	opacity: 1;
	visibility: visible;
	pointer-events: inherit;
}

.social a:hover {
	background: rgba(235, 102, 34, 1);
	border-color: #EB6622;
}

.social a .iconfont {
	font-size: 20px;
}

.footer-c-r {
	font-weight: 400;
	font-size: 14px;
	color: #999999;
	line-height: 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 0 20px;
}

.footer-c-r a {
	color: #999;
	transition: all .6s;
}

.footer-b a:hover,
.footer-t-r .list .li-des a:hover,
.footer-c-r a:hover {
	color: #fff;
}

.footer-b {
	border-top: 1px solid RGBA(102, 102, 102, 1);
	font-weight: 400;
	font-size: 14px;
	color: #999999;
	line-height: 30px;
	padding: 25px 0;
}

.footer-b .content1400 {
	display: flex;
	justify-content: space-between;
}

.footer-b a {
	color: #999999;
	transition: all .6s;
}

.fixedRight {
	position: fixed;
	z-index: 999;
	top: 50%;
	right: 0;
}

.fixedRight ul {
	box-shadow: 5px 9px 30px 0px rgba(177, 177, 177, 0.3);
}

.fixedRight ul:not(:last-child) {
	margin-bottom: 10px;
}

.fixedRight li {
	position: relative;
	background-color: #fff;
}

.fixedRight li:not(:last-child):before {
	position: absolute;
	content: "";
	left: 50%;
	transform: translateX(-50%);
	width: 58.33%;
	height: 1px;
	background-color: RGBA(222, 222, 222, 1);
	bottom: 0;
}

.fixedRight li:first-child {
	border-top-left-radius: 5px;
}

.fixedRight li:last-child {
	border-bottom-left-radius: 5px;
}

.fixedRight li>a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 60px;
	width: 60px;
	padding: 15px 5px;
	transition: all .6s;
	color: #999999;
}

.fixedRight li:first-child:hover a .iconfont {
	color: rgba(235, 102, 34, 1);
}

.fixedRight li>a .iconfont {
	font-size: 26px;
	color: rgba(235, 102, 34, 1);
	transition: all .6s;
}

.fixedRight li>a .iconfont.icon-shang {
	color: #CCCCCC
}

.fixedRight li>a .text {
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
}

.fixedRight li .phone {
	position: absolute;
	left: 0;
	transform: translateX(-110%);
	height: 100%;
	border-radius: 5px;
	background: #fff;
	font-size: 20px;
	padding: 0 20px;
	white-space: nowrap;
	display: flex;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all .6s;
}

.fixedRight li:hover .phone {
	opacity: 1;
	visibility: visible;
	pointer-events: inherit;
}

.footerForm {
	background-color: rgba(242, 242, 242, 1);
	padding: 60px 0 44px;
}

.footerForm .box-c {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footerForm .box-c .title {
	font-weight: 400;
	font-size: 24px;
	color: #222222;
	line-height: 1.5;
}

.footerForm .box-c .des {
	font-family: Microsoft YaHei;
	font-weight: 300;
	font-size: 18px;
	color: #222222;
	line-height: 30px;
	margin-top: 7px;
}

.footerForm .box-c .r {
	width: 71.42%;
}

.footerForm .box-c .r form {
	display: flex;
	justify-content: space-between;
}

.footerForm .box-c .r .input {
	width: 29%;
	height: 60px;
	background: #FFFFFF;
	border-radius: 5px;
	padding: 0 19px;

}

.footerForm .box-c .r .input select,
.footerForm .box-c .r .input input {
	border: none;
	outline: none;
	width: 100%;
	height: 100%;
	font-weight: 400;
	font-size: 16px;
	color: #999999;
	line-height: 30px;
	background-color: transparent;
}

.footerForm .box-c .r .submit {
	width: 11%;
	line-height: 60px;
	background: #EB6622;
	border-radius: 5px;
	text-align: center;
	font-weight: 400;
	font-size: 16px;
	color: #FFFFFF;
	cursor: pointer;
}

.cr {
	width: 50px;
	height: 50px;
	animation: spin 4s linear infinite;
}

@keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn)
	}
}

@media (max-width:1770px) {
	.header .logo img {
		width: 300px;
	}

	.header .r .list li>a {
		font-size: 16px;
	}

	.header .r .contactBtn {
		margin-left: 45px;
		line-height: 45px;
	}

	.header .r .language,
	.header .r .shoppingCartBtn,
	.header .r .header-search-box {
		margin-left: 28px;
	}

	.header .r .list li>a {
		line-height: 90px;
	}
}

@media (max-width:1630px) {
	.content1600 {
		width: 94%;
	}
}

@media (max-width:1560px) {
	.header .logo img {
		width: 249px;
	}

	.header .r .list {
		gap: 0 35px;
	}
}

@media (max-width:1500px) {}

@media (max-width:1440px) {
	.header .r .list {
		gap: 0 30px;
	}

	.header .r .list li>a {
		line-height: 80px;
	}

	.header .logo img {
		width: 220px;
	}

	.header .r .contactBtn {
		padding: 0 20px;
		line-height: 40px;
	}

	.header .r .language,
	.header .r .shoppingCartBtn,
	.header .r .header-search-box {
		margin-left: 18px;
	}

	.content312 {
		padding: 0 3%;
	}

	.font48 {
		font-size: 36px;
	}

	.font36 {
		font-size: 32px;
	}

	.font60 {
		font-size: 48px;
	}

	.font70 {
		font-size: 60px;
	}

	.font80 {
		font-size: 60px;
	}

	.font90 {
		font-size: 70px;
	}

	.font200 {
		font-size: 150px;
	}
}

@media (max-width:1400px) {}

@media (max-width:1430px) {
	.content1400 {
		width: 94%;
	}
}

@media (max-width:1330px) {
	.content1300 {
		width: 94%;
	}
}

@media (max-width:1300px) {
	.header .r .list {
		gap: 0 20px;
	}

	.header .r .contactBtn {
		margin-left: 20px;
	}
}

@media (max-width:1280px) {
	.pc-aslide-content-c .list .li-title {
		font-size: 20px;
	}

	.pc-aslide-content-c .list li:not(:last-child) {
		margin-bottom: 35px;
	}

	.pc-aslide-content-c .list .li-des a {
		font-size: 16px;
		line-height: 2;
	}

	.font36 {
		font-size: 30px;
	}

	.font60 {
		font-size: 36px;
	}

	.font70 {
		font-size: 48px;
	}

	.font80 {
		font-size: 48px;
	}

	.font90 {
		font-size: 60px;
	}

	.font200 {
		font-size: 120px;
	}

	.font30 {
		font-size: 28px;
	}

	.font48 {
		font-size: 30px;
	}
}

@media (max-width:1199px) {
	.header .content312 {
		height: 70px;
	}

	.header .r .contactBtn,
	.header .r .list {
		display: none;
	}

	.font36 {
		font-size: 28px;
	}

	.font60 {
		font-size: 30px;
	}

	.font70 {
		font-size: 36px;
	}

	.font80 {
		font-size: 36px;
	}

	.font90 {
		font-size: 50px;
	}

	.font200 {
		font-size: 90px;
	}

	.font30 {
		font-size: 26px;
	}

	.font48 {
		font-size: 28px;
	}

	.m-right-buttom {
		display: block;
		cursor: pointer;
		user-select: none;
	}

	.m-right-buttom .in {
		height: 30px;
		width: 19px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-left: 25px;
	}

	.m-right-buttom span,
	.m-right-buttom span:after,
	.m-right-buttom span:before {
		display: block;
		height: 2px;
		width: 19px;
		background: #fff;
		transition: top .2s linear, background .6s;
	}

	.header.active1 .m-right-buttom span,
	.header.active1 .m-right-buttom span:after,
	.header.active1 .m-right-buttom span:before,
	.header.active .m-right-buttom span,
	.header.active .m-right-buttom span:after,
	.header.active .m-right-buttom span:before {
		background: rgba(235, 102, 34, 1);
	}

	.m-right-buttom span {
		transition: all .2s .4s ease, background 0s;
		position: relative
	}

	.m-right-buttom span:after,
	.m-right-buttom span:before {
		position: absolute;
		left: 0;
		content: '';
		transform-origin: 50% 50%;
		transition: top .2s .4s ease, transform .4s ease;
		height: 2px
	}

	.m-right-buttom span:before {
		top: 6px
	}

	.m-right-buttom span:after {
		top: -6px
	}

	.m-right-buttom.active span,
	.header.active .m-right-buttom.active span {
		transition: all .2s 0s ease;
		background: 0 0
	}

	.m-right-buttom.active span:after,
	.m-right-buttom.active span:before {
		transition: top .2s ease, transform .2s .3s ease;
		top: 0;
		width: 19px
	}

	.m-right-buttom.active span:before {
		transform: rotate3d(0, 0, 1, 45deg)
	}

	.m-right-buttom.active span:after {
		transform: rotate3d(0, 0, 1, -45deg)
	}

	.footer {
		padding-top: 90px;
	}

	.footer-c {
		padding: 45px 0;
	}

	.footer-t-l .list {
		margin-top: 45px;
	}

	.footerForm .box-c {
		flex-direction: column;
		align-items: flex-start;
	}

	.footerForm .box-c .r {
		width: 100%;
		margin-top: 20px;
	}

	.innerBread {
		padding-top: 20px;
	}

	.innerNav-r a {
		font-size: 16px;
		line-height: 50px;
		padding: 0 20px;
	}
}

@media (max-width: 1024px) {
	.innerNav {
		margin-top: 14px;
		flex-direction: column;
		align-items: flex-end;
	}

	.innerNav .en {
		width: 100%;
		margin-bottom: 10px;
	}

	.innerNav-r {
		flex-wrap: wrap;
		justify-content: center;
	}

	.footerForm .box-c .title {
		font-size: 22px;
	}

	.footer-b {
		padding: 20px 0;
	}

	.footer-c-r {
		margin-top: 20px;
		width: 100%;
	}

	.footer-t-l .list li:not(:last-child) {
		margin-bottom: 0;
	}

	.footer-c {
		flex-direction: column;
		padding: 40px 0;
	}

	.footer {
		padding-top: 80px;
	}

	.footer-t-l .list {
		margin-top: 40px;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}

	.footer-t-l,
	.footer-c-l {
		width: 100%;
	}

	.footer-t-r {
		display: none;
	}

	.font36 {
		font-size: 26px;
	}

	.font60 {
		font-size: 28px;
	}

	.font70 {
		font-size: 30px;
	}

	.font80 {
		font-size: 30px;
	}

	.font90 {
		font-size: 40px;
	}

	.font200 {
		font-size: 70px;
	}

	.font30 {
		font-size: 24px;
	}

	.font48 {
		font-size: 26px;
	}
}

@media (max-width: 768px) {
	.innerNav-r a {
		line-height: 45px;
		font-size: 14px;
		padding: 0 15px;
	}

	.footerForm .box-c .r .submit {
		width: 120px;
		line-height: 50px;
	}

	.footerForm .box-c .r .input {
		height: 50px;
	}

	.footerForm .box-c .r form {
		flex-direction: column;
		gap: 10px 0;
	}

	.footerForm .box-c .r .input {
		width: 100%;
	}

	.footerForm .box-c .title {
		font-size: 20px;
	}

	.footer-b .content1400 {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.footer-b {
		padding: 10px 0;
		line-height: 24px;
	}

	.footer-t-l .list .text-box {
		margin-top: 9px;
	}

	.footer-c-r {
		margin-top: 15px;
	}

	.social a {
		width: 44px;
		height: 44px;
	}

	.footer {
		padding-top: 60px;
	}

	.footer-c {
		padding: 30px 0;
	}

	.footer-t-l .list {
		margin-top: 30px;
	}

	.font36 {
		font-size: 24px;
	}

	.font60 {
		font-size: 26px;
	}

	.font70 {
		font-size: 28px;
	}

	.font80 {
		font-size: 28px;
	}

	.font90 {
		font-size: 30px;
	}

	.font200 {
		font-size: 50px;
	}

	.font30 {
		font-size: 22px;
	}

	.font48 {
		font-size: 24px;
	}

	.pc-aslide-content {
		background-color: transparent;
	}

	.pc-aslide {
		z-index: 99;
		background-color: transparent;
	}

	.pc-aslide::before,
	.pc-aslide::after {
		position: absolute;
		content: "";
		width: 100vw;
		height: 100vw;
		right: 50vw;
		bottom: -50vw;
		background-color: rgba(0, 0, 0, 1);
		border-radius: 0 50% 0 0;
		transform-origin: center;
		transform: scale(0);
		transition: opacity .7s, transform 1.5s;
	}

	.pc-aslide::after {
		background-color: #fff;
		right: auto;
		bottom: auto;
		left: 50vw;
		top: -50vw;
		border-radius: 0 0 0 50%;
		transition: opacity .7s, transform 1s;
	}

	.pc-aslide.active::after,
	.pc-aslide.active::before {
		transform: scale(5);
		opacity: 1;
	}

	.pc-aslide-content-t {
		display: none;
	}

	.pc-aslide-content {
		padding: 60px 3%;
	}

	.pc-aslide-content {
		transform: translateX(0);
		z-index: 4;
	}

	.pagination ul li {
		width: 36px;
		height: 36px;
		line-height: 36px;
	}

	.video-content {
		width: 85%;
	}

	.video-content video {
		display: block;
		margin: 0 auto;
		width: 100%;
		height: auto;
	}

	.fixedRight li>a {
		width: 50px;
		min-height: 50px;
		padding: 10px 5px;
	}

	.header .r .header-search-box {
		margin-left: 0;
	}
}

@media (max-width: 500px) {
	.innerBread{
	padding-top: 10px;}
	.innerNav-r {
		gap: 7px;
	}

	.header .r .language .iconfont,
	.header .r .shoppingCartBtn .iconfont,
	.header .r .header-search-box .header-searchBtn {
		font-size: 18px;
	}

	.header .r .language,
	.header .r .shoppingCartBtn {
		margin-left: 14px;
	}

	.m-right-buttom .in {
		margin-left: 16px;
		transform: scale(.9);
	}

	.header .logo img {
		width: 190px;
	}

	.footerForm {
		padding-top: 50px;
	}

	.social a {
		width: 40px;
		height: 40px;
	}

	.social a .iconfont {
		font-size: 16px;
	}

	.footer-b {
		line-height: 20px;
		font-size: 12px;
	}

	.footer-t-l .list .text-box {
		margin-top: 4px;
	}

	.footer-t-l .list {
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
	}

	.footer {
		padding-top: 50px;
	}

	.footer-c {
		padding: 25px 0;
	}

	.footer-t-l .list {
		margin-top: 25px;
	}

	.font36 {
		font-size: 22px;
	}

	.font60 {
		font-size: 24px;
	}

	.font70 {
		font-size: 26px;
	}

	.font80 {
		font-size: 26px;
	}

	.font90 {
		font-size: 26px;
	}

	.font200 {
		font-size: 30px;
	}

	.font30 {
		font-size: 20px;
	}

	.font48 {
		font-size: 22px;
	}

	.pc-aslide-content-c .list {
		min-width: 249px;
	}

	.pc-aslide-content-c .list .li-des {
		padding-top: 15px;
		margin-top: 15px;
	}

	.pc-aslide-content-c .list li:not(:last-child) {
		margin-bottom: 25px;
	}

	.pc-aslide-content-c .list .li-des a {
		font-size: 14px;
		line-height: 2;
	}

	.pc-aslide-content-c .list .li-des a:not(:last-child) {
		margin-bottom: 5px;
	}

	.pc-aslide-content-c .list .li-title {
		font-size: 16px;
	}

	.pc-aslide-content-t {
		height: 50px;
	}

	.pc-aslide-content-t .logo img {
		width: 100px;
	}
}